home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / Delphi 3.0 / DATA.Z / sysutils.inc < prev    next >
Encoding:
Text File  |  1997-01-30  |  5.6 KB  |  164 lines

  1. resourcestring
  2.  
  3.   SInvalidInteger = '''%s'' is not a valid integer value';
  4.   SInvalidFloat = '''%s'' is not a valid floating point value';
  5.   SInvalidDate = '''%s'' is not a valid date';
  6.   SInvalidTime = '''%s'' is not a valid time';
  7.   SInvalidDateTime = '''%s'' is not a valid date and time';
  8.   STimeEncodeError = 'Invalid argument to time encode';
  9.   SDateEncodeError = 'Invalid argument to date encode';
  10.   SOutOfMemory = 'Out of memory';
  11.   SInOutError = 'I/O error %d';
  12.   SFileNotFound = 'File not found';
  13.   SInvalidFilename = 'Invalid filename';
  14.   STooManyOpenFiles = 'Too many open files';
  15.   SAccessDenied = 'File access denied';
  16.   SEndOfFile = 'Read beyond end of file';
  17.   SDiskFull = 'Disk full';
  18.   SInvalidInput = 'Invalid numeric input';
  19.   SDivByZero = 'Division by zero';
  20.   SRangeError = 'Range check error';
  21.   SIntOverflow = 'Integer overflow';
  22.   SInvalidOp = 'Invalid floating point operation';
  23.   SZeroDivide = 'Floating point division by zero';
  24.   SOverflow = 'Floating point overflow';
  25.   SUnderflow = 'Floating point underflow';
  26.   SInvalidPointer = 'Invalid pointer operation';
  27.   SInvalidCast = 'Invalid class typecast';
  28.   SAccessViolation = 'Access violation at address %p. %s of address %p';
  29.   SStackOverflow = 'Stack overflow';
  30.   SControlC = 'Control-C hit';
  31.   SPrivilege = 'Privileged instruction';
  32.   SOperationAborted = 'Operation aborted';
  33.   SException = 'Exception %s in module %s at %p.'#$0A'%s%s';
  34.   SExceptTitle = 'Application Error';
  35.   SInvalidFormat = 'Format ''%s'' invalid or incompatible with argument';
  36.   SArgumentMissing = 'No argument for format ''%s''';
  37.   SInvalidVarCast = 'Invalid variant type conversion';
  38.   SInvalidVarOp = 'Invalid variant operation';
  39.   SDispatchError = 'Variant method calls not supported';
  40.   SReadAccess = 'Read';
  41.   SWriteAccess = 'Write';
  42.   SResultTooLong = 'Format result longer than 4096 characters';
  43.   SFormatTooLong = 'Format string too long';
  44.   SVarArrayCreate = 'Error creating variant array';
  45.   SVarNotArray = 'Variant is not an array';
  46.   SVarArrayBounds = 'Variant array index out of bounds';
  47.   SExternalException = 'External exception %x';
  48.   SAssertionFailed = 'Assertion failed';
  49.   SIntfCastError = 'Interface not supported';
  50.   SAssertError = '%s (%s, line %d)';
  51.   SModuleAccessViolation = 'Access violation at address %p in module ''%s''. %s of address %p';
  52.   SCannotReadPackageInfo = 'Cannot access package information for package ''%s''';
  53.   SErrorLoadingPackage = 'Error loading package ''%s.''  Windows error code: %d';
  54.   SInvalidPackageFile = 'Invalid package file ''%s''';
  55.   SInvalidPackageHandle = 'Invalid package handle';
  56.   SDuplicatePackageUnit = 'Cannot load package ''%s.''  It contains unit ''%s,''' +
  57.     ';which is also contained in package ''%s''';
  58.   SWin32Error = 'Win32 Error.  Code: %d.'#10'%s';
  59.   SUnkWin32Error = 'A Win32 API function failed';
  60.  
  61.   SShortMonthNameJan = 'Jan';
  62.   SShortMonthNameFeb = 'Feb';
  63.   SShortMonthNameMar = 'Mar';
  64.   SShortMonthNameApr = 'Apr';
  65.   SShortMonthNameMay = 'May';
  66.   SShortMonthNameJun = 'Jun';
  67.   SShortMonthNameJul = 'Jul';
  68.   SShortMonthNameAug = 'Aug';
  69.   SShortMonthNameSep = 'Sep';
  70.   SShortMonthNameOct = 'Oct';
  71.   SShortMonthNameNov = 'Nov';
  72.   SShortMonthNameDec = 'Dec';
  73.  
  74.   SLongMonthNameJan = 'January';
  75.   SLongMonthNameFeb = 'February';
  76.   SLongMonthNameMar = 'March';
  77.   SLongMonthNameApr = 'April';
  78.   SLongMonthNameMay = 'May';
  79.   SLongMonthNameJun = 'June';
  80.   SLongMonthNameJul = 'July';
  81.   SLongMonthNameAug = 'August';
  82.   SLongMonthNameSep = 'September';
  83.   SLongMonthNameOct = 'October';
  84.   SLongMonthNameNov = 'November';
  85.   SLongMonthNameDec = 'December';
  86.  
  87.   SShortDayNameSun = 'Sun';
  88.   SShortDayNameMon = 'Mon';
  89.   SShortDayNameTue = 'Tue';
  90.   SShortDayNameWed = 'Wed';
  91.   SShortDayNameThu = 'Thu';
  92.   SShortDayNameFri = 'Fri';
  93.   SShortDayNameSat = 'Sat';
  94.  
  95.   SLongDayNameSun = 'Sunday';
  96.   SLongDayNameMon = 'Monday';
  97.   SLongDayNameTue = 'Tuesday';
  98.   SLongDayNameWed = 'Wednesday';
  99.   SLongDayNameThu = 'Thursday';
  100.   SLongDayNameFri = 'Friday';
  101.   SLongDayNameSat = 'Saturday';
  102.  
  103. {  SInvalidInteger = 65408;
  104.   SInvalidFloat = 65409;
  105.   SInvalidDate = 65410;
  106.   SInvalidTime = 65411;
  107.   SInvalidDateTime = 65412;
  108.   STimeEncodeError = 65413;
  109.   SDateEncodeError = 65414;
  110.   SOutOfMemory = 65415;
  111.   SInOutError = 65416;
  112.   SFileNotFound = 65417;
  113.   SInvalidFilename = 65418;
  114.   STooManyOpenFiles = 65419;
  115.   SAccessDenied = 65420;
  116.   SEndOfFile = 65421;
  117.   SDiskFull = 65422;
  118.   SInvalidInput = 65423;
  119.   SDivByZero = 65424;
  120.   SRangeError = 65425;
  121.   SIntOverflow = 65426;
  122.   SInvalidOp = 65427;
  123.   SZeroDivide = 65428;
  124.   SOverflow = 65429;
  125.   SUnderflow = 65430;
  126.   SInvalidPointer = 65431;
  127.   SInvalidCast = 65432;
  128.   SAccessViolation = 65433;
  129.   SStackOverflow = 65434;
  130.   SControlC = 65435;
  131.   SPrivilege = 65436;
  132.   SOperationAborted = 65437;
  133.   SException = 65438;
  134.   SExceptTitle = 65439;
  135.   SInvalidFormat = 65440;
  136.   SArgumentMissing = 65441;
  137.   SInvalidVarCast = 65442;
  138.   SInvalidVarOp = 65443;
  139.   SDispatchError = 65444;
  140.   SReadAccess = 65445;
  141.   SWriteAccess = 65446;
  142.   SResultTooLong = 65447;
  143.   SFormatTooLong = 65448;
  144.   SVarArrayCreate = 65449;
  145.   SVarNotArray = 65450;
  146.   SVarArrayBounds = 65451;
  147.   SExternalException = 65452;
  148.   SAssertionFailed = 65453;
  149.   SIntfCastError = 65454;
  150.   SAssertError = 65455;
  151.   SModuleAccessViolation = 65456;
  152.   SCannotReadPackageInfo = 65457;
  153.   SErrorLoadingPackage = 65458;
  154.   SInvalidPackageFile = 65459;
  155.   SInvalidPackageHandle = 65460;
  156.   SDuplicatePackageUnit = 65461;
  157.   SWin32Error = 65462;
  158.   SUnkWin32Error = 65463;
  159.  
  160.   SShortMonthNames = 65472;
  161.   SLongMonthNames = 65488;
  162.   SShortDayNames = 65504;
  163.   SLongDayNames = 65511;}
  164.